home *** CD-ROM | disk | FTP | other *** search
- #define LINES 0
- #define BUTTON 1
- #define PANEL 2
- #define BEVEL 3
- #define ICON 4
- #define GSTRING 5
- #define RADIO 6
- #define CHECK 7
- #define FROMDISK 8
- #define TODISK 9
- #define SCREEN 10
- #define GTEXT 11
- #define POOF 12
- #define EXIT 13
-
- struct panelrec {
- char name[20];
- Panel *panel;
- panelrec *previous,*next;
- };
-
- struct bevelrec {
- char name[20];
- Bevel *bevel;
- bevelrec *next,*previous;
- };
-
- struct checkboxrec {
- char name[20];
- char text[20];
- Gcheckbox *checkbox;
- checkboxrec *next,*previous;
- };
-
- struct radiorec {
- char name[20];
- char text[20];
- Gradio *radio;
- radiorec *next,*previous;
- };
-
- struct iconrec {
- char name[20];
- char filename[20];
- Icon *icon;
- iconrec *next,*previous;
- };
-
- struct stringrec {
- char name[20];
- int length;
- Gstring *string;
- stringrec *next,*previous;
- };
-
- struct buttonrec {
- char name[20];
- char text[20];
- int format;
- Button *button;
- buttonrec *next,*previous;
- };
-
- struct textrec {
- char name[20];
- char txt[81];
- int sz;
- Gtext *text;
- textrec *next,*previous;
- };
-
- struct bevelstruct {
- char name[20];
- int ulx,uly,w,h,thick;
- };
-
- struct panelstruct {
- char name[20];
- int ulx,uly,w,h,in,thick;
- };
-
- struct buttonstruct {
- char name[20];
- int ulx,uly;
- char cont[20];
- int img;
- };
-
- struct iconstruct {
- char name[20];
- int ulx,uly;
- char cont[20];
- };
-
- struct radiostruct {
- char name[20];
- int ulx,uly;
- char cont[20];
- };
-
- struct checkboxstruct {
- char name[20];
- int ulx,uly;
- char cont[20];
- };
-
- struct gstringstruct {
- char name[20];
- int ulx,uly,length,uc;
- };
-
- struct linestruct {
- int x,y,x1,y1,color,thickness;
- };
-
- struct textstruct {
- char name[20];
- int ulx,uly;
- char cont[40];
- int fgd,bgd,size;
- };
-
-
-